home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global qtChan, gKnobSprite
- sprite(9).visible = 0
- puppetSprite(46, 1)
- qtChan = 11
- sprite(qtChan).volume = 256
- preLoad(qtChan - 1)
- set the mouseDownScript to EMPTY
- set the mouseUpScript to EMPTY
- gKnobSprite = 25
- setUpKnob()
- end
-
- on idle
- global gCursorReady
- if gCursorReady = 1 then
- cursor(200)
- checkCursors()
- set the locH of sprite 46 to the mouseH
- set the locV of sprite 46 to the mouseV
- updateStage()
- end if
- end
-
- on checkCursors
- global gMagCursor
- set the castNum of sprite 46 to the number of member "curs1"
- if rollOver(5) then
- set the castNum of sprite 46 to the number of member "hotCursor"
- end if
- if rollOver(6) then
- set the castNum of sprite 46 to the number of member "curs1"
- end if
- repeat with i = 11 to 13
- if rollOver(i) then
- set the castNum of sprite 46 to the number of member "hotCursor"
- end if
- end repeat
- repeat with i = 33 to 35
- if rollOver(i) then
- set the castNum of sprite 46 to the number of member "hotCursor"
- end if
- end repeat
- if rollOver(17) then
- set the castNum of sprite 46 to the number of member gMagCursor
- end if
- if the castNum of sprite 18 and rollOver(18) then
- set the castNum of sprite 46 to the number of member "deMagCursor"
- end if
- if rollOver(34) then
- set the castNum of sprite 46 to the number of member "hotCursor"
- end if
- if rollOver(36) then
- set the castNum of sprite 46 to the number of member "hotCursor"
- end if
- repeat with i = 40 to 42
- if rollOver(i) then
- set the castNum of sprite 46 to the number of member "hotCursor"
- end if
- end repeat
- end
-